Conditions | 2 |
Total Lines | 6 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | import {IObserver} from '../Observer/Observer'; |
||
22 | |||
23 | initialize(): void { |
||
24 | 3 | if (this.currentPage.value == null) return; |
|
25 | 1 | const firstPage: IPageData = this.currentPage.value; |
|
26 | 1 | this.history.replaceState(firstPage, firstPage.name, firstPage.rootUrl); |
|
27 | 1 | this.updatePage(firstPage); |
|
28 | } |
||
49 |